Get the transactions of the charger
curl --request GET \
--url https://cloud.volttime.com/api/v2/teams/{team_id}/chargers/{charger_id}/transactions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"date_from": "2025-07-04 13:42:22",
"date_to": "2025-07-04 13:42:22",
"limit": 1,
"order_by": "asc"
}'
{
"data": [
{
"id": 3,
"charger_id": 25,
"charger_connector_id": 8,
"reservation_id": 7432,
"id_tag": "DLJN5625",
"meter_start": 29317,
"meter_stop": 37253,
"total_kwh": "7.94",
"start_cost": "0.0000",
"kwh_cost": "0.0000",
"total_kwh_cost": "0.0000",
"total_cost": "0.00",
"started_at": "2025-06-23T13:21:29.000000Z",
"stopped_at": "2025-06-23T22:55:40.000000Z",
"stop_reason": "Other",
"created_at": "2025-07-04T13:42:22.000000Z",
"updated_at": "2025-07-04T13:42:22.000000Z"
},
{
"id": 4,
"charger_id": 26,
"charger_connector_id": 9,
"reservation_id": 5719,
"id_tag": "WRSI4902",
"meter_start": 34891,
"meter_stop": 44009,
"total_kwh": "9.12",
"start_cost": "0.0000",
"kwh_cost": "0.0000",
"total_kwh_cost": "0.0000",
"total_cost": "0.00",
"started_at": "2025-06-09T03:56:32.000000Z",
"stopped_at": "2025-06-15T08:17:34.000000Z",
"stop_reason": "EVDisconnected",
"created_at": "2025-07-04T13:42:22.000000Z",
"updated_at": "2025-07-04T13:42:22.000000Z"
}
]
}
See the documentation for more information.
The ID of the team.
The ID of the charger.
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://cloud.volttime.com/api/v2/teams/{team_id}/chargers/{charger_id}/transactions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"date_from": "2025-07-04 13:42:22",
"date_to": "2025-07-04 13:42:22",
"limit": 1,
"order_by": "asc"
}'
{
"data": [
{
"id": 3,
"charger_id": 25,
"charger_connector_id": 8,
"reservation_id": 7432,
"id_tag": "DLJN5625",
"meter_start": 29317,
"meter_stop": 37253,
"total_kwh": "7.94",
"start_cost": "0.0000",
"kwh_cost": "0.0000",
"total_kwh_cost": "0.0000",
"total_cost": "0.00",
"started_at": "2025-06-23T13:21:29.000000Z",
"stopped_at": "2025-06-23T22:55:40.000000Z",
"stop_reason": "Other",
"created_at": "2025-07-04T13:42:22.000000Z",
"updated_at": "2025-07-04T13:42:22.000000Z"
},
{
"id": 4,
"charger_id": 26,
"charger_connector_id": 9,
"reservation_id": 5719,
"id_tag": "WRSI4902",
"meter_start": 34891,
"meter_stop": 44009,
"total_kwh": "9.12",
"start_cost": "0.0000",
"kwh_cost": "0.0000",
"total_kwh_cost": "0.0000",
"total_cost": "0.00",
"started_at": "2025-06-09T03:56:32.000000Z",
"stopped_at": "2025-06-15T08:17:34.000000Z",
"stop_reason": "EVDisconnected",
"created_at": "2025-07-04T13:42:22.000000Z",
"updated_at": "2025-07-04T13:42:22.000000Z"
}
]
}